@import url(./fonts.css);
body,
html {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: iranSans;
}

* {
  font-family: iranSans;
}

.btn {
  padding: 0.6rem 2rem;
  font: normal 600 16px/20px iranSans;
  position: relative;
  border: 3px solid transparent;
  border-radius: 2px;
}

button:focus,
button:hover,
button:active,
.btn:focus,
.btn:hover,
.btn:active {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

p, h1, h2, h3, h4, h5, h6 {
  color: #141313;
}

.w-55 {
  width: 55%;
}

.w-45 {
  width: 45%;
}

.h-2 {
  height: 2rem;
}

.font-18 {
  font-size: 18px;
}

.font-14 {
  font-size: 18px;
}

.mt-10 {
  margin-top: 10vh;
}

.mb-6 {
  margin-bottom: 5rem;
}

.contentScroll {
  position: absolute;
  top: 0px;
  left: 15px;
  right: 0px;
  bottom: 0px;
  overflow-y: scroll;
}

.contract {
  padding: 20px 10px;
  margin-bottom: 10px;
  text-align: right;
  -webkit-transition: max-height 1s ease;
  transition: max-height 1s ease;
  max-height: 70px;
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.contract .contract-title {
  background-color: white;
  border: 0;
  width: 100%;
  text-align: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contract .contract-title p {
  color: #46691e;
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}

.contract .contract-title .caret {
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  border-top: 7px dashed;
  border-top: 4px solid\9;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  color: #46691e;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.contract .contract-links {
  margin-top: 20px;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 0;
}

.contract .contract-links li {
  margin-bottom: 10px;
}

.contract .contract-links li a {
  color: #141313;
  padding: 2px;
}

.contract .contract-links li a:hover {
  color: white;
  background-color: #46691e;
  text-decoration: none;
}

.contract.active {
  max-height: fit-content;
}

.contract.active .contract-title .caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.contract.active .contract-links {
  opacity: 1;
}

.buttonSecondary {
  background: #46691e;
  background-clip: padding-box;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  margin-right: 1rem;
}

.buttonSecondary:hover {
  background: whitesmoke;
  background-clip: padding-box;
  color: #141313;
}

.buttonSecondary::after {
  content: "";
  background: #46691e;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 4px;
}
/*# sourceMappingURL=style.css.map */